.detail-new h2 {
	padding: 0;
	font-family: RotondaC;
	font-weight: bold;
	font-size: 2.4rem;
	color: #01A7E1;
	text-transform: none;
}
.detail-new .active-from {
	display: inline-block;
	background-color: #B7CE6B;
	font-family: RotondaC;
	font-weight: bold;
	font-size: 1.7rem;
	color: white;
	border-radius: 100px;
}
.detail-new img {
	max-width: 100%;
}

.detail-new .slider {
	display: none;
}
.detail-new .slider-inited {
	position: relative;
	display: flex;
	align-items: center;
}
.detail-new .slider-inner {
	overflow: hidden;
}
.detail-new .slider-wrap {
	display: flex;
	width: 100%;
	position: relative;
	transition: left .5s ease;
}
.detail-new .element {
	flex: 0 0 100%;
	display: flex;
	justify-content: space-around;
	align-items: center;
}
.detail-new .slider-wrap img {
	
}
.detail-new .arrow {
	box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.25);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: white;
	position: absolute;
	z-index: 1;
	cursor: pointer;
}
.detail-new .arrow:hover {
	background-color: #B7CE6B;
}
.detail-new .arrow-bckg {
	background-image: url(images/arrow-green.png);
	background-position: center;
	background-repeat: no-repeat;
	display: block;
}
.detail-new .arrow:hover .arrow-bckg {
	background-image: url(images/arrow-white.png);
}
.detail-new .arrow.next .arrow-bckg, .detail-new .arrow:hover.prev .arrow-bckg {
	transform: rotate(180deg);
}
.detail-new .arrow:hover.next .arrow-bckg {
	transform: rotate(0);
}

@media (min-width: 1200px) {
	.detail-new .arrow {
		width: 65px;
		height: 65px;
	}
	.detail-new .arrow-bckg {
		width: 100%;
		height: 100%;
		background-size: 37px 37px;
	}
	.detail-new .arrow.prev {
		left: -95px;
	}
	.detail-new .arrow.next {
		right: -95px;
	}
	.detail-new h2 {
		margin-bottom: 25px;
	}
}
@media (min-width: 992px) {
	
}
@media (min-width: 768px) {
	
}
@media (min-width: 576px) {
	
}
@media (max-width: 575px) {
	
}